home *** CD-ROM | disk | FTP | other *** search
- /* GENKEY.C - this program generates a 256 line file to stdout of the form
-
- 0=0
- 1=1
- ...
- 255=255
-
- This should be re-directed to a file which will be later read by keycomp.exe
- */
-
- main()
- {
- int c;
- for (c = 0; c < 256; c++) printf("%d=%d\n", c, c);
- }
-